home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / c / 3d_dll.exe / DEMO.DEF < prev    next >
Text File  |  1991-08-27  |  785b  |  31 lines

  1. ; module-definition file for demo -- used by LINK.EXE
  2.  
  3. NAME       Demo      ; application's module name
  4.  
  5. DESCRIPTION  '3-D Sample Microsoft Windows Application'
  6.  
  7. EXETYPE      WINDOWS    ; required for all Windows applications
  8.  
  9. STUB       'WINSTUB.EXE' ; Generates error message if application
  10.             ; is run without Windows
  11.  
  12. ;CODE can be moved in memory and discarded/reloaded
  13. CODE  PRELOAD MOVEABLE DISCARDABLE
  14.  
  15. ;DATA must be MULTIPLE if program can be invoked more than once
  16. DATA  PRELOAD MOVEABLE MULTIPLE
  17.  
  18.  
  19. HEAPSIZE     1024
  20. STACKSIZE    5120    ; recommended minimum for Windows applications
  21.  
  22.  
  23. ; All functions that will be called by any Windows routine
  24. ; MUST be exported.
  25.  
  26. EXPORTS
  27.    MainWndProc
  28.    DemoDlgProc
  29.    ComboDlgProc
  30.    AboutDlgProc
  31.